home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 1 / MacMania 1.toast / Educational / Math / Math Practice 1.0 / Math Practice 1.0.rsrc / STR#_5000.txt < prev    next >
Encoding:
Text File  |  1993-04-17  |  1.3 KB  |  139 lines

  1. do
  2.  
  3. else
  4.  
  5. end
  6.  
  7. exit
  8.  
  9. function
  10.  
  11. global
  12.  
  13. if
  14.  
  15. next
  16.  
  17. on
  18.  
  19. pass
  20.  
  21. repeat
  22.  
  23. return
  24.  
  25. send
  26.  
  27. then
  28.  
  29. --
  30.  
  31. function...=function xxx
  32. |
  33. end xxx
  34.  
  35. if...then...else...end=if | then
  36. xxx
  37. else
  38. xxx
  39. end if
  40.  
  41. if...then...else=if | then
  42. xxx
  43. else xxx
  44.  
  45. if...then...end=if | then
  46. xxx
  47. end if
  48.  
  49. if...then=if | then xxx 
  50.  
  51. lockmenus...=set lockmenus to true
  52. |
  53. set lockmenus to false
  54.  
  55. lockmessages...=set lockmessages to true
  56. |
  57. set lockmessages to false
  58.  
  59. lockscreen...=set lockscreen to true
  60. |
  61. set lockscreen to false
  62.  
  63. on ...=on xxx
  64. |
  65. end xxx
  66.  
  67. on closeBackground...=on closeBackground
  68. |
  69. end closeBackground
  70.  
  71. on closeCard...=on closeCard
  72. |
  73. end closeCard
  74.  
  75. on closeProject...=on closeProject
  76. |
  77. end closeProject
  78.  
  79. on closeWindow...=on closeWindow
  80. |
  81. end closeWindow
  82.  
  83. on idle...=on idle
  84. |
  85. end idle
  86.  
  87. on mouseDown...=on mouseDown
  88. |
  89. end mouseDown
  90.  
  91. on mouseStillDown=on mouseStillDown
  92. |
  93. end mouseStillDown
  94.  
  95. on mouseUp...=on mouseUp
  96. |
  97. end mouseUp
  98.  
  99. on openBackground...=on openBackground
  100. |
  101. end openBackground
  102.  
  103. on openCard...=on openCard
  104. |
  105. end openCard
  106.  
  107. on openProject...=on openProject
  108. |
  109. end openProject
  110.  
  111. on openWindow...=on openWindow
  112. |
  113. end openWindow
  114.  
  115. on startUp...=on startUp
  116. |
  117. end startUp
  118.  
  119. repeat ...=repeat
  120. |
  121. end repeat
  122.  
  123. repeat for...=repeat for | times
  124.  
  125. end repeat
  126.  
  127. repeat until..=repeat until |
  128.  
  129. end repeat
  130.  
  131. repeat while...=repeat while |
  132.  
  133. end repeat
  134.  
  135. repeat with...=repeat with | = xxx to xxx
  136.  
  137. end repeat
  138.  
  139.